home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Expert 1995 Winter
/
Mac Expert - Winter 95.iso
/
Les fichiers
/
Communications
/
Divers
/
DialScript 1.7.1 ƒ
/
Examples
/
DelayNext.ds
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1994-03-08
|
381 b
|
15 lines
|
[
TEXT/dIsR
]
script DelayNext
-- Execution begins at the first state-- "one" in this case
state one
display "I'll wait ten seconds and then go to the next state\r";
delay 10;
next "two";
display "This statement never gets executed\r";
end;
state two
display "I am at state two\r";
end; -- Script terminates when it hits "end"
end;